fix(harness): bump plugin version 0.1.0 -> 0.1.1 so the hooks.json fix ships - #57
Merged
Merged
Conversation
…x ships /plugin marketplace update only re-fetches plugin content when the version string actually changes. The hooks.json schema fix (previous PR) merged to main but never reached an already-installed consumer (reDeploy) because plugin.json's version was still 0.1.0 -- the consumer's cache at ~/.claude/plugins/cache/ai-project-orchestrator/orchestrator/0.1.0/ had no reason to refresh. Bumps .claude/.claude-plugin/plugin.json and the matching entry in .claude/.claude-plugin/marketplace.json (the local-clone method's manifest; the repo-root alias deliberately has no version and tracks the git SHA instead, unaffected). Adds a maintainer note to USAGE.md's "Updating the plugin" section so this isn't missed again.
robercano
approved these changes
Jul 6, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
/plugin marketplace updateonly re-fetches plugin content when the version string actually changes. Thehooks.jsonschema fix (#56, merged) landed onmainbut never reached an already-installed consumer (reDeploy) becauseplugin.json's version was still0.1.0— the consumer's cache at~/.claude/plugins/cache/ai-project-orchestrator/orchestrator/0.1.0/had no reason to refresh.Fix
Bump
.claude/.claude-plugin/plugin.jsonand the matching entry in.claude/.claude-plugin/marketplace.json(local-clone method) from0.1.0to0.1.1. The repo-root alias marketplace.json deliberately carries no version (tracks git SHA), so it's unaffected.Adds a maintainer note to
USAGE.md's "Updating the plugin" section flagging this for future releases.Test plan
GATES_FILE=.claude/self/gates.json gate.sh lintpassesGATES_FILE=.claude/self/gates.json gate.sh testpassesFollow-up for reDeploy
Once merged, reDeploy's session needs
/plugin marketplace update ai-project-orchestrator(now that the version actually changed, this should re-fetch) or a fresh/plugin install.